home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter me
- cursor(280)
- end
-
- on mouseLeave me
- cursor(-1)
- end
-
- on mouseDown me
- set x to the mouseLine
- if line x of field "indexlist" = EMPTY then
- nothing()
- else
- repeat with j = 1 to 65
- puppetSprite(j, 0)
- end repeat
- set searchVari to line x of field "indexlist"
- repeat with i = 1 to 20
- if line i of field "storeData" contains searchVari then
- put line i of field "storeData" into field "temp"
- put "box" & i & "." into field "whichbox"
- updateData()
- if i <= 6 then
- go("info")
- else
- if i > 10 then
- go("info3")
- else
- go("info2")
- end if
- end if
- next repeat
- end if
- nothing()
- end repeat
- end if
- end
-